﻿/* تنظیمات عمومی */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* استایل هدر */
header {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 20px;
}

    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.2rem;
    }

/* استایل بخش‌ها */
main {
    max-width: 1000px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
}

    section h2 {
        color: #007bff;
        margin-bottom: 15px;
        text-align: center;
    }

/* استایل بخش دسته‌بندی خدمات */
.service-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-box {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .service-box h3 {
        color: #007bff;
        margin-bottom: 10px;
    }

/* استایل ویژگی‌ها */
.our-features ul {
    list-style: disc;
    margin-left: 20px;
    line-height: 1.8;
}

    .our-features ul li {
        margin-bottom: 10px;
    }

/* استایل فوتر */
footer {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
}

/* واکنش‌گرا (Responsive) */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 15px;
    }
}
